github.com/klauspost/compress/fse.Scratch.decTable (field)
12 uses
github.com/klauspost/compress/fse (current package)
decompress.go#L175: if cap(s.decTable) < tableSize {
decompress.go#L176: s.decTable = make([]decSymbol, tableSize)
decompress.go#L178: s.decTable = s.decTable[:tableSize]
decompress.go#L204: s.decTable[highThreshold].symbol = uint8(i)
decompress.go#L222: s.decTable[position].symbol = uint8(ss)
decompress.go#L239: for u, v := range s.decTable {
decompress.go#L244: s.decTable[u].nbBits = nBits
decompress.go#L253: s.decTable[u].newState = newState
decompress.go#L269: s1.init(br, s.decTable, s.actualTableLog)
decompress.go#L270: s2.init(br, s.decTable, s.actualTableLog)
fse.go#L53: decTable []decSymbol // Decompression table.
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |